home *** CD-ROM | disk | FTP | other *** search
- /*
- File: MiscUtil.cpp
-
- Contains: xxx put contents here xxx
-
- Owned by: Nick Pilch
-
- Copyright:
-
- Change History (most recent first):
-
- <1> 18.09.1996 NP first checked in
-
- To Do:
- */
-
- #ifndef __QUICKDRAWL_
- #include <QuickDraw.h>
- #endif
-
-
- #ifndef _MISCUTIL_
- #include "MiscUtil.h"
- #endif
-
- #ifndef _PLFMDEF_
- #include "PlfmDef.h"
- #endif
-
-
- //==============================================================================
- // Cursor Utils
- //==============================================================================
-
- void WatchCursor()
- {
- SetCursor(*GetCursor(watchCursor));
- }
-
- void ArrowCursor()
- {
- SetCursor(&(ODQDGlobals.arrow));
- }
-
-